github.com/klauspost/compress/zstd.fseEncoder.Histogram (method)

9 uses

	github.com/klauspost/compress/zstd (current package)
		blockenc.go#L448: 	hist := enc.Histogram()
		blockenc.go#L840: 	llH := b.coders.llEnc.Histogram()
		blockenc.go#L841: 	ofH := b.coders.ofEnc.Histogram()
		blockenc.go#L842: 	mlH := b.coders.mlEnc.Histogram()
		dict.go#L281: 		addHist(&ll, block.coders.llEnc.Histogram())
		dict.go#L282: 		addHist(&ml, block.coders.mlEnc.Histogram())
		dict.go#L283: 		addHist(&of, block.coders.ofEnc.Histogram())
		dict.go#L350: 		hist := dst.Histogram()
		fse_encoder.go#L65: func (s *fseEncoder) Histogram() *[256]uint32 {